home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Now 11 / CD-ROM Now MegaDisc 11 (1995-02).iso / discs / toolkit / 12 / modern / etc / brc next >
Encoding:
Text File  |  1993-12-08  |  292 b   |  16 lines

  1. #!/bin/sh
  2. #
  3. # /etc/brc.. This script gets run just before the system is down.
  4. #
  5. echo Syncing disks...
  6. /bin/sync
  7. cat << EOF
  8.  
  9. If you are running off the ramdisk, expect a 'umount:/dev/fd0 not mounted'
  10. error. You can safely ignore it.
  11.  
  12. Unmounting file systems.....
  13. EOF
  14. /etc/umount -a
  15. echo Done.
  16.